# randomize author order
aut <- c('Marcus Beck', 'Kirsten Dorans', 'Jessica Renee Henkel', 'Kathryn Ireland', 'Ed Sherwood', 'Patricia Varela') %>%
sample %>%
paste(collapse = ', ')
cat('By', aut)
By Kathryn Ireland, Patricia Varela, Jessica Renee Henkel, Ed Sherwood, Marcus Beck, Kirsten Dorans